home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
comp
/
old.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
445 b
|
22 lines
/*
O L D . C
*/
#include "iccomp.h"
ESTRUC_ *old (lval, rval)
ESTRUC_
*lval,
*rval;
{
if (test_binop(op_older, lval, rval))
return (lval); /* test for correct types */
etoc(lval); /* convert to code */
etoc(rval);
defcode(lval, rval, op_older);
return (lval); /* return new expression */
}